home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / posix / unistd / getpid.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-25  |  161 b   |  13 lines

  1. #include <stdio.h>
  2. #include <unistd.h>
  3.  
  4. int
  5. main(void)
  6. {
  7.   int i;
  8.   for (i=0; i<10; i++)
  9.     printf("%10d", getpid());
  10.   printf("\n");
  11.   return 0;
  12. }
  13.